
                #whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite, flicker 1.5s linear infinite;
  }
  
  /* WhatsApp button animation to create a floating effect */
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px); /* Move up */
    }
  }
  
  /* Flickering effect for the icon */
  @keyframes flicker {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.7;
    }
    100% {
      opacity: 1;
    }
  }
  
  /* WhatsApp button styling */
  #whatsapp-button a {
    display: block;
  }
  
  #whatsapp-icon {
    width: 80px; /* Adjust the size of the icon */
    height: 80px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
  }
  
  /* 3D rotation on hover for WhatsApp */
  #whatsapp-button:hover #whatsapp-icon {
    transform: rotateY(360deg);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0);
  }
  
  /* Style for the Book Now button */
  #boonow-button {
    position: fixed; /* Fixes the button to the right side */
    bottom: 120px; /* Adjusted the distance from the bottom of the screen */
    right: 20px; /* Adjusted the distance from the right side of the screen */
    z-index: 9999; /* Makes sure the button is on top of other elements */
    animation: float 3s ease-in-out infinite, flicker 1.5s linear infinite;
  }
  
  #book-icon {
    width:170px; /* Set the size of the Book Now button */
    height: 170px; /* Maintain aspect ratio */
    /* transition: transform 0.3s ease, box-shadow 0.3s ease;*/
    transform-style: preserve-3d;
    cursor: pointer;
  }
  
  /* 3D rotation on hover for Book Now button */
  #boonow-button:hover #book-icon {
    transform: rotateY(360deg);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0);
  }
  
  /* Flickering effect for the Book Now icon */
  @keyframes flicker {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.7;
    }
    100% {
      opacity: 1;
    }
  }
  
  /* Applying the floating effect for Book Now button */
  #boonow-button {
    position: fixed;
    bottom: 120px;
    right: 20px;
    z-index: 9999;
    animation: float 3s ease-in-out infinite, flicker 1.5s linear infinite;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px); /* Move up */
    }
  }
  
              
              
    /* Live Chat Styling */
    #live-chat-container {
        display: none;
        position: fixed;
        bottom: 20px;
        left: 20px; /* Positioned on left */
        width: 300px;
        height: 450px; /* Increased height slightly */
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        font-family: Arial, sans-serif;
    }
    
    #chat-header {
        background-color: #4CAF50;
        color: white;
        padding: 12px;
        text-align: center;
        font-size: 18px;
        position: relative;
        border-radius: 8px 8px 0 0;
    }
    
    #close-chat {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 20px;
        cursor: pointer;
    }
    
    #chat-body {
        padding: 15px;
        overflow-y: auto;
        height: 320px; /* Adjusted for larger container */
        scroll-behavior: smooth;
    }
    
    .message {
        margin-bottom: 12px;
        display: flex;
        align-items: flex-start;
    }
    
    .bot-message {
        margin-left: 0;
        justify-content: flex-start;
    }
    
    .user-message {
        margin-left: auto;
        justify-content: flex-end;
    }
    
    .message-content {
        display: flex;
        align-items: center;
        max-width: 85%;
    }
    
    .message-avatar {
        width: 45px; /* Increased size */
        height: 45px; /* Increased size */
        border-radius: 50%;
        margin-right: 10px;
        object-fit: cover;
        border: 2px solid #4CAF50; /* Added border */
    }
    
    .message p {
        margin: 0;
        padding: 10px;
        background-color: #f1f1f1;
        border-radius: 15px;
        font-size: 14px;
    }
    
    .user-message p {
        background-color: #e0f7fa;
        border-radius: 15px;
    }
    
    .bot-message p {
        background-color: #f1f1f1;
        border-radius: 15px;
    }
    
    .help-desk {
        margin-top: 20px;
        text-align: center;
    }
    
    .help-desk-icon {
        width: 60px; /* Increased size */
        height: 60px; /* Increased size */
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #4CAF50; /* Added border */
    }
    
    #chat-input {
        display: flex;
        padding: 12px;
        background-color: #f9f9f9;
        border-top: 1px solid #ddd;
        border-radius: 0 0 8px 8px;
    }
    
    #user-input {
        width: 80%;
        padding: 10px;
        border-radius: 20px; /* Rounded input */
        border: 1px solid #ddd;
    }
    
    #send-btn {
        width: 20%;
        background-color: #4CAF50;
        color: white;
        border: none;
        padding: 10px;
        cursor: pointer;
        border-radius: 20px; /* Rounded button */
        margin-left: 5px;
    }
    
    /* Chat Button and Prompt */
    .chat-button-container {
        position: fixed;
        bottom: 20px;
        left: 20px;
        display: flex;
        align-items: center;
        z-index: 1000;
    }
    
    #open-chat-btn {
        background-color: #4CAF50;
        color: white;
        padding: 0;
        border: none;
        cursor: pointer;
        border-radius: 50%;
        z-index: 1000;
        width: 70px; /* Increased size */
        height: 70px; /* Increased size */
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }
    
    #open-chat-btn:hover {
        background-color: #45a049;
    }
    
    #open-chat-btn img {
        width: 50px; /* Increased size */
        height: 50px; /* Increased size */
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid white; /* Added border */
    }
    
    .chat-prompt {
        background-color: white;
        padding: 10px 15px;
        border-radius: 20px;
        margin-left: 10px;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
        font-family: Arial, sans-serif;
        font-size: 14px;
        color: #333;
        max-width: 150px;
        animation: fadeIn 0.5s ease-in-out;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateX(-10px); }
        to { opacity: 1; transform: translateX(0); }
    }
    
    /* FAQ style for sequential questions */
    .faq-question {
        cursor: pointer;
        padding: 10px;
        margin-bottom: 8px;
        background-color: #e0f7fa;
        border-radius: 15px;
        font-size: 14px;
        display: none; /* Hidden by default */
        transition: all 0.3s ease;
    }
    
    .faq-question:hover {
        background-color: #b3e5fc;
    }
    
    .faq-question.active {
        display: block;
    }
    
    .faq-answer {
        display: none;
        margin-top: 8px;
        animation: fadeIn 0.3s ease-in-out;
    }
    
    /* Custom Contact Response */
    .contact-info {
        padding: 10px;
        background-color: #f9f9f9;
        border-radius: 10px;
        margin-top: 10px;
        border: 1px solid #ddd;
    }
    
    .contact-info h4 {
        margin-top: 0;
        color: #4CAF50;
    }
    
    .contact-info p {
        margin: 5px 0;
        font-size: 14px;
    }
    
    .contact-method {
        display: flex;
        align-items: center;
        margin: 8px 0;
    }
    
    .contact-icon {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }
